home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 52
/
Amiga Format AFCD52 (Issue 136, May 2000).iso
/
-serious-
/
programming
/
other
/
littelcomp
/
r5
/
lc
/
examples
/
objecttest.l
< prev
next >
Wrap
Text File
|
2000-02-28
|
333b
|
19 lines
;// object creation with littel v0.16b
#mode OBJECT
#xdef geteight
#xdef inc1
PROC geteight ;// his one just returns eight in D0
ENDPROC 8
PROC inc1 %param1 ;// call this with parameter on stack, stackcleanup is automatic
CODESTART ;// gotta be there!
INC %param1
ENDPROC %param1
END ;// just a silly example //